for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* @link https://github.com/terabytesoft
* @copyright Copyright (c) 2018 TerabyteSoft S.A.
* @license https://github.com/terabytesoft/asset-bootbox/blob/master/LICENSE.md
*
* @author: Wilmer Arámbula <[email protected]>
*/
/***********************************************************************************************************************
* BootBox *
***********************************************************************************************************************/
(function () {
yii.confirm = function(message, ok, cancel) {
yii
/** global: yii */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
bootbox.confirm(message, function(result) {
bootbox
/** global: bootbox */
if (result) { !ok || ok(); } else { !cancel || cancel(); }
});
}
})();
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.